home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000065_news@watsun.cc.columbia.edu _Tue May 18 09:51:34 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA19945
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 18 May 1999 09:51:34 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA24884
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 18 May 1999 09:24:30 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Trouble with AS-NAME switch in SEND
  11. Date: 18 May 1999 13:24:29 GMT
  12. Organization: Columbia University
  13. Message-ID: <7hrpmd$o9h$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <7hqm9l$rq4$1@newsmaster.cc.columbia.edu>,
  17. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  18. : In article <7hqhmo$g9f$1@vixen.cso.uiuc.edu>,
  19. : Adam H. Lewenberg <adam@symcom.math.uiuc.edu> wrote:
  20. : : [E:\] remote set file names literal
  21. : : [E:\] set file names literal
  22. : : [E:\] send /AS-NAME:README readme
  23. : : 
  24. : : (Kermit now gives me the send screen where I see README => README =>
  25. : : readme)
  26. : : 
  27. : : Why is it converting the filename to lower case?
  28. : Because of the many older file systems which only supported Upper case
  29. : file names Unix C-Kermit converts an all upper case file name to lower
  30. : case even when file names are literal.
  31. By default.
  32.  
  33. : What you are seeing above is the K95 is translating from "README" to "README"
  34. : and then C-Kermit is translating the file name to "readme".
  35. To fix, also tell the other Kermit (C-Kermit in this case) to "set file
  36. names literal".
  37.  
  38. Also, note that "send /as-name:blah" overrides the FILE NAMES setting -- the
  39. as-name is always sent exactly as you specify it.
  40.  
  41. - Frank